718. 最长重复子数组
为保证权益,题目请参考 718. 最长重复子数组(From LeetCode).
解决方案1
CPP
C++
/******************************************************************************
* 力扣解题
*
* @brief 力扣题目
* @author Keven Ge
* @date 2020-07-01
*
*****************************************************************************/
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
/**
* @brief 动态规划
*/
//class Solution {
//public:
// int findLength(vector<int> &A, vector<int> &B) {
// int n = A.size();
// int m = B.size();
// vector<vector<int> > dp(n + 1, vector<int>(m + 1, 0));
// int ans = 0;
// for (int i = n - 1; i >= 0; i--) {
// for (int j = m - 1; j >= 0; j--) {
// if (A[i] == B[j]) {
// dp[i][j] = dp[i + 1][j + 1] + 1;
// } else {
// dp[i][j] = 0;
// }
// ans = max(ans, dp[i][j]);
// }
// }
// return ans;
// }
//};
/**
* @brief Rabin-Karp 方法
*/
class Solution {
private:
const int base = 113;
const int mod = 1000000009;
public:
int findLength(vector<int> &A, vector<int> &B) {
}
/**
* @brief 快速幂方法
*
* @param x 底
* @param n
* @return
*/
long long qpow(long long x, long long n) const {
long long ret = 1;
while (n) {
if (n & 1) {
ret = ret * x % mod;
}
x = x * x % mod;
n = n >> 1;
}
return ret;
}
};
int main() {
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75